Themes and Mods

Find Wordpress Themes, Plugins, Joomla Templates, Extensions

Best WP Themes Club

Parallax

Parallax

Parallax is a single page, Parallax scrolling WordPress theme from Themify. This theme looks beautiful with its cool scrolling effects and is suitable for your corporate portfolio website. It is a fully responsive theme that can be used as a single page or regular site with page URLs. Themify’s drag & drop page Builder is included in the theme. This theme comes with 40+ pre-designed layouts, custom post layouts, custom header image or slider, custom menu, Image filters and much more awesome features.

Features:

  • Over 40+ pre-designed layouts included
  • Comes with a portfolio custom post type for creating a portfolio section
  • Supports multimedia content such as videos, images and gallery sliders
  • Use Team posts to display a complete list of your team members
  • Upload a custom header image or slider and assign a custom menu
  • Auto-apply Grayscale, Blur, and Sepia filters to your images without editing the original image source
  • Display animated progress bars with any custom color
  • List and Grid Layouts – can be set to a 4-column, 3-column, 2-column, or 2-column-thumb with or without the sidebar.
  • Single page sites with scrollTo menu or any standard multiple page sites
  • With the Parallax option panel, choose either infinite scroll or the traditional page number navigation
  • Includes rtl.css stylesheet.

Price: $49.00

View Demo      Download Now

Music

Music

Music is a responsive and retina ready WordPress multimedia theme suitable for artists, events, portfolios, photographers, and even apps. This theme allows you to embed a music player, an album playlist or a fullwidth video backgrounds. The drag & drop page builder allows you to build an unlimited number of page layouts. Additionally, 6 Pre-Made layouts have been included with this theme. Music includes various custom post types and tools, each with its own beautiful unique layout to create a website related to music. This theme also helps you to promote tours, concerts, and events in general.

Features:

  • Responsive and retina ready
  • Easy drag & drop page builder
  • Unlimited Layouts
  • 6 Pre-built layouts
  • Customize everything from Google fonts, background images and colors, the site logo, the menu navigation design, and even sidebar widgets
  • Custom Post Types
  • Embed a custom playlist onto your website for visitors to listen to and enjoy
  • Events – Promote tours, concerts, and events
  • Gallery – masonry gallery in a single view, and a slider and grid layout for your photos.
  • Easily embed videos from YouTube, Vimeo, and any other video websites, or upload your own custom video
  • Fullwidth Video Background
  • Footer Music Player
  • Animating Background Colors
  • Single Page or Multiple Pages
  • Custom Header Background & Menus

Price: $49.00

View Demo      Download Now

Bold

Bold

Bold is a responsive WordPress theme suitable for blogs and portfolio websites. This theme allows you to showcase various types of media (images, videos, galleries, sliders, and maps) in a fullwidth design. Each post gives you full control of media alignment, font styles, background color and image. This theme comes packed with number of color presets, font styles, and background images.

Features:

  • Responsive layout
  • List and grid view layout options for blog and portfolio
  • Custom welcome message
  • 10 preset background colors
  • 22 preset background images (examples: 1, 2, 3, 4, 5…)
  • Themify Custom Panel gives you full control of media content, alignment, color, font, and background (see backend screenshot)
  • Unique Portfolio posts using Themify Custom Panel (see demo)
  • Social media icons
  • Option to choose lightbox or photoswipe gallery
  • Option to choose infinite scroll or paged navigation
  • Custom header and footer navigation menu
  • Optional RSS icon and search form
  • Custom footer text
  • Animated back to up button
  • Choose up to 4 footer widget columns
  • 9 theme skins
  • Coded with HTML5 & CSS3
  • Child theme support

Price: $49.00

View Demo      Download Now

Agency

Agency

Agency is a clean, minimal and responsive WordPress theme suitable for design agencies to showcase their design portfolio, display their products and service offerings. This theme comes with Themify shortcode convention that provides complete freedom in how the website behaves and displays itself across any and all devices. You can also provide social proof through customer testimonials, and display the hard working people on your team page.

Features:

  • Responsive layout
  • Custom post types: Portfolio, Highlight, Testimonial, and Team
  • Create custom layouts with shortcodes (see demo Home 1, Home 2, and Home 3)
  • Portfolio single featured image or multiple image gallery slider
  • Various list and grid layouts for blog posts
  • Lightbox media support (popup image, video, and iframe window)
  • Custom header menu
  • Optional RSS icon
  • Social media icons
  • Choose up to 4 footer widget columns
  • Custom footer text
  • 7 theme skins
  • Coded with HTML5 & CSS3
  • Child theme support

Price: $49.00

View Demo      Download Now

10 Bespoke WordPress Code Snippets for WP Developers

The convenience attached with customizing the look and feel of a WordPress powered website has made this CMS a leading choice among website developers across the globe. Combating the hassles of installing plugins, WordPress allows you to use simple code snippets for modifying your website in your own unique way. Today, in this post, I’ve listed out ten WordPress code snippets which are custom-made to meet the requirements of every WordPress web developer. Let’s hop onto these WordPress code snippets!

wp-code-snippets

  1. Hide the working version for your WordPress website

Keeping an outdated WordPress version installed in your site can expose your portal to a wide array of security infringements, making it easy for the hackers to gain access to your website. Therefore, it is better to remove any such outdated WordPress version from your website. Use the following lines of code for hiding the current WordPress version:

<?php // This will remove the WP version for extra WordPress Security
function remove_wp_version(){
return ”;
}

add_filter(‘the_generator’, ‘remove_wp_version’);
?>

  1. Hide WordPress Core Update Messages

If you are a WordPress developer working for a client, then you probably wouldn’t want the client to update anything for the website outside your knowledge. The below mentioned code snippet would simply hide the yellow bar that appears at the top of the admin dashboard each time a new version is being released:

<?php // Hide WordPress Update Message
function wp_hide_update() {
remove_action(‘admin_notices’, ‘update_nag’, 4);
}

add_action(‘admin_menu’,’wp_hide_update’);
?>

  1. Shift WordPress Admin Bar towards the bottom

By default, the WordPress admin bar is displayed in the header once you’re logged in to your admin dashboard. You can choose to move this admin bar towards the bottom for all admin pages by adding the below code snippet to your theme’s functions.php file:

function fb_move_admin_bar() {
echo ‘
<style type=”text/css”>
body {
margin-top: -18px;
padding-bottom: 15px;
}
body.admin-bar #wphead {
padding-top: 0;
}
body.admin-bar #footer {
padding-bottom: 15px;
}
#wpadminbar {
top: auto !important;
bottom: 0;
}
#wpadminbar .quicklinks .menupop ul {
bottom: 15px;
}
</style>’;
}
// on backend area
add_action( ‘admin_head’, ‘fb_move_admin_bar’ );
// on frontend area
add_action( ‘wp_head’, ‘fb_move_admin_bar’ );

  1. Sharpen the resized uploaded images in WordPresss(applicable only for images with format .jpg)

Contributed by Unsal Korkmaz, displayed below is a code snippet which will allow you to sharpen resized images which have been uploaded to the WordPress website:

function sharp_resized_image( $resized_file ) {
$image = wp_load_image( $resized_file );
if ( !is_resource( $image ) )
return new WP_Error( ‘error_loading_image’, $image, $file );
$size = @getimagesize( $resized_file );
if ( !$size )
return new WP_Error(‘invalid_image’, __(‘Could not read image size’), $file);
list($orig_w, $orig_h, $orig_type) = $size;
switch ( $orig_type ) {
case IMAGETYPE_JPEG:
$matrix = array(
array(-1, -1, -1),
array(-1, 16, -1),
array(-1, -1, -1),
);
$divisor = array_sum(array_map(‘array_sum’, $matrix));
$offset = 0;
imageconvolution($image, $matrix, $divisor, $offset);
imagejpeg($image, $resized_file,apply_filters( ‘jpeg_quality’, 90, ‘edit_image’ ));
break;
case IMAGETYPE_PNG:
return $resized_file;
case IMAGETYPE_GIF:
return $resized_file;
}
return $resized_file;
}

add_filter(‘image_make_intermediate_size’, ‘sharp_resized_image’,900);

  1. Changing the Image Path Only

If you’re one of those WordPress users who have recently hosted their images on an external CDN(Content Delivery Network) the it is important for you to change the image location for all the previous uploaded images. For this, all you need to do is simply perform the below SQL queries on your database:

UPDATE wp_posts SET post_content = REPLACE (post_content, ‘src=”//www.oldsiteurl.com’, ‘src=”//yourcdn.newsiteurl.com’);

And:

UPDATE wp_posts SET guid = REPLACE (guid, ‘http://www.oldsiteurl.com’, ‘http://yourcdn.newsiteurl.com’) WHERE post_type = ‘attachment’;

  1. List all the available WordPress User Roles

If you want to show a list of all available user roles, all you need to do is simply use the below code snippet:

$roles_obj = new WP_Roles();
$roles_names_array = $roles_obj->get_names();
echo ‘<select name=”role”>’;
foreach ($roles_names_array as $role_name) {
echo ‘<option>’.$role_name.'</option>’;
}
echo ‘</select>’;

  1. Taking a snapshot of any website

If you are keen on taking the snapshot of a website, then you can use the below function which uses a shortcode for outputting a real-time thumbnail of the website:

<?php // Output a snapshot of any website!
function wp_snap($atts, $content = NULL) {
extract(shortcode_atts(array(
“snap” => ‘http://www.testweb.com’,
“url” => ‘http://mywebsite.com/’,
“alt” => ‘Snaps’,
“w” => ‘550’, // width
“h” => ‘250’ // height
), $atts));
$img = ‘<img alt=”’ . $alt . ‘” src=”’ . $snap . ” . urlencode($url) . ‘?w=’ . $w . ‘&h=’ . $h . ‘” />’;
return $img;
}

add_shortcode(“snap”, “wp_snap”);

// Use [snap url=”http://mywebsite.com/” alt=”Snaptaken” w=”550″ h=”250″]
?>

Now, to use the above shortcode, just add the following code snippet to your post:

[code][snap url=”http://torquemag.io/” alt=”WPDaily Website” w=”300″ h=”200″][/code]

 

  1. Remove image sizes from media upload gallery

Use the below code snippet for removing image sizes from media upload gallery:

function image_size_removal($sizes) {
unset( $sizes[‘small’] );
unset( $sizes[‘medium’] );
unset( $sizes[‘large’] );
return $sizes;
}
add_filter(‘image_size_names_choose’, ‘image_size_removal’);

  1. Style the first paragraph of your posts and pages

Contributed by Jake Rocheleau, below is the code snippet(to be added to the functions.php file) that allows you to style the first paragraph of your posts and pages; making them look different from rest of the content:

function first_paragraph($content){
global $post;
if ($post->post_type == “post”){
return preg_replace(‘/&lt;p([^>]+)?>/’, ‘&lt;p$1 class=”first”>’, $content, 1); }
else {
return $content;
}
}

add_filter(‘the_content’, ‘first_paragraph’);

  1. Assign all articles written by Author A to Author B

If you want to transfer all posts belonging to one author say A to a different author, say B, then all you need to do is simply use the below SQL query:

UPDATE wp_posts SET post_author = ‘new-author-id’ WHERE post_author = ‘old-author-id’;

That’s it!

Summing Up

The above mentioned code snippets can aid you in performing the required tweaks for your WordPress site in the most flexible manner. Don’t wait any further in using them for your WP portal.

Author Bio:
As a certified top-notch developer at OSSMedia Ltd, Edward Jones has an impressive expertise in WordPress & he provide concrete information on WordPress related tips & trends. If you need to hire WordPress developer then simply get in touch with him via his Twitter and Google+ handle. Having gathered a total of 5 years of experience in WordPress Development, Edward has delivered numerous projects within the allotted time-frame.

Note: All the templates and extensions listed in this site are from their respective developers and all support requests should be sent directly to the developers. We do not provide support for any of the templates or extensions listed in this site. We just make some revenue if you purchase any of the product through the link from our site.